home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1990 / 05 / virt.hpp < prev    next >
C/C++ Source or Header  |  1990-07-25  |  302b  |  9 lines

  1. /* virt.hpp.  Tells the C++ compiler that these are C functions. Include
  2.  *            this file instead of virt.h in any C++ programs. */
  3. #ifndef __VIRT_HPP      /* take care of multiple #includes */
  4. #define __VIRT_HPP
  5. extern "C" {
  6. #include "virt.h"       /* get the C prototypes */
  7. };
  8. #endif
  9.